ComponentOne CalendarView for WinForms
C1.Win.C1Input Namespace / CharHelper Class / ToFullWidth Method / ToFullWidth(Boolean,Char[]) Method
When the soundex character is processed a true is returned; otherwise, a false returned.
An array of characters.

In This Topic
    ToFullWidth(Boolean,Char[]) Method
    In This Topic
    Tansforms the specified character to a full width character if possible. This method differs from the other where it takes on an array of characters. In FarEast country there are times when multiple half width characters make a one full width character.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function ToFullWidth( _
       ByRef processedAll As Boolean, _
       ByVal ParamArray c() As Char _
    ) As Char
    public static char ToFullWidth( 
       out bool processedAll,
       params char[] c
    )

    Parameters

    processedAll
    When the soundex character is processed a true is returned; otherwise, a false returned.
    c
    An array of characters.

    Return Value

    Full width character of c, otherwise the original character is returned.
    See Also